home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PChange.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  664b  |  36 lines

  1. /*
  2.  *--- PChange.h -----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:57 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PChange__
  10. #define __PChange__
  11.  
  12. #include "PMTypes.h"
  13.  
  14. class PChange
  15. {
  16.  
  17. public:
  18.  
  19.     PChange
  20.       (    const char * sFindWhat,
  21.         const char * sChangeTo,
  22.         short cSearchRange,
  23.         PMBool bWrapAround,
  24.         PMBool bMatchCase,
  25.         PMBool bWholeWord,
  26.         PMBool bClearAttr);
  27.  
  28. private:
  29.  
  30.     PChange();
  31. };
  32.  
  33. #endif
  34.  
  35. // end of PChange.h
  36.